home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update32.zoo / util / diffs
Encoding:
Text File  |  1993-07-13  |  2.5 KB  |  95 lines

  1. ===================================================================
  2. RCS file: /net/acae127/home/bammi/etc/src/master/atari/cross-util/Changelog,v
  3. retrieving revision 1.39
  4. diff -c -r1.39 Changelog
  5. *** 1.39    1993/05/21 15:27:29
  6. --- Changelog    1993/07/13 19:57:32
  7. ***************
  8. *** 485,487 ****
  9. --- 485,492 ----
  10.       cleanup
  11.   
  12.   ----------------------------- Patchlevel 36 --------------------------------
  13. + ld.c, sym-ld.c:: ++jrb
  14. +     do chmod() on output file.
  15. + ----------------------------- Patchlevel 37 --------------------------------
  16. ===================================================================
  17. RCS file: /net/acae127/home/bammi/etc/src/master/atari/cross-util/PatchLev.h,v
  18. retrieving revision 1.33
  19. diff -c -r1.33 PatchLev.h
  20. *** 1.33    1993/05/21 15:23:00
  21. --- PatchLev.h    1993/07/13 19:57:35
  22. ***************
  23. *** 1,4 ****
  24. ! #define PatchLevel "36"
  25.   
  26.   /*
  27.    *    the Patch Level above is to identify the version
  28. --- 1,4 ----
  29. ! #define PatchLevel "37"
  30.   
  31.   /*
  32.    *    the Patch Level above is to identify the version
  33. ===================================================================
  34. RCS file: /net/acae127/home/bammi/etc/src/master/atari/cross-util/ld.c,v
  35. retrieving revision 1.43
  36. diff -c -r1.43 ld.c
  37. *** 1.43    1993/05/21 15:23:08
  38. --- ld.c    1993/07/13 19:57:38
  39. ***************
  40. *** 3930,3938 ****
  41.   
  42.     filemode = statbuf.st_mode;
  43.   
  44. - #ifndef atarist
  45.     chmod (output_filename, filemode & ~0111);
  46. - #endif
  47.   
  48.     /* Output the a.out header.  */
  49.     write_header ();
  50. --- 3930,3936 ----
  51. ***************
  52. *** 3967,3975 ****
  53.   
  54.     fclose (outdesc);
  55.   
  56. - #ifndef atarist
  57.     chmod (output_filename, filemode | 0111);
  58. - #endif
  59.   
  60.   #if (defined(MINIX) || defined(atariminix))
  61.     /* write out.h format stuff out for MDB if requested */
  62. --- 3965,3971 ----
  63. ===================================================================
  64. RCS file: /net/acae127/home/bammi/etc/src/master/atari/cross-util/sym-ld.c,v
  65. retrieving revision 1.23
  66. diff -c -r1.23 sym-ld.c
  67. *** 1.23    1993/03/29 03:41:12
  68. --- sym-ld.c    1993/07/13 19:57:42
  69. ***************
  70. *** 3548,3556 ****
  71.   
  72.     filemode = statbuf.st_mode;
  73.   
  74. - #if !(defined(CROSSATARI) || defined(atarist) || defined(atariminix))
  75.     chmod (output_filename, filemode & ~0111);
  76. - #endif
  77.   
  78.     /* Output the a.out header.  */
  79.     write_header ();
  80. --- 3548,3554 ----
  81. ***************
  82. *** 3574,3582 ****
  83.   
  84.     close (outdesc);
  85.   
  86. - #if !(defined(CROSSATARI) || defined(atarist) || defined(atariminix))
  87.     chmod (output_filename, filemode | 0111);
  88. - #endif
  89.   }
  90.   
  91.   void modify_location (), perform_relocation (), copy_text (), copy_data ();
  92. --- 3572,3578 ----
  93.